home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 778 b | 40 lines | [TEXT/CWIE] |
- // Source code for Klingon Clock. Copyright (C) 1996-1997
- // Charles H. Hemstreet IV
- //
- // Started at MacHack 1996
- // Completed at MacHack 1997
- //
- // Best thanks to:
- // My wife Regie, son Chad and baby
- // Other thanks to Elden Wood and Bob Clark
- //
- // This code is distributed "as-is" and implies no warranty or guarantee.
-
-
- #ifndef __MAINUTIL__
- #define __MAINUTIL__
-
- #ifndef __ASSERT__
- #include <assert.h>
- #endif
-
- #ifndef __TIMEUTIL__
- #include "timeUtil.h"
- #endif
-
-
- // DEFINES
- #define kMaxArray 6
-
- // EXTERNAL PROTOTYPES
- extern OSErr speakSentence(short *, short *, short *);
- extern OSErr makeSentence(short *, short *, short *, short *);
-
-
- // prototypes
- void gestaltChecks(void);
- OSErr DoAllPeriodicProcessing(void);
- OSErr doSuccessSound(void);
-
- #endif // __MAINUTIL__
-